web3.js web3.eth.getTransactionFromBlock
getTransactionFromBlock(hashStringOrNumber, indexNumber [, callback])
ブロックハッシュまたはブロック番号、およびトランザクションのインデックス位置に基づき、トランザクションを返します。
パラメータ
1. String
ブロック番号またはハッシュ
"genesis"
"latest"
"pending"
2. Number
トランザクションのインデックス位置
3. Function
オプショナル
コールバック
第一引数に error オブジェクト、第二引数に result オブジェクトが渡されます。
戻り値
Object を返す Promise
トランザクションオブジェクト
サンプル
code:example.js
var transaction = web3.eth.getTransactionFromBlock('0x4534534534', 2)
.then(console.log);
// 戻り値の詳細は web3.eth.getTransaction を参照
参考